* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

:root{
    --orange:#ff5722;
    --dark: #0a0a0a;
    --muted: #f4f4f4;
    --card-border: #e6e6e6;
    --background-image: url("images/system_img/background.png");
}

body {
  background: url("images/system_img/background.png");
}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    padding: 20px 60px;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.header nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
}

.header nav a:hover{
    color: var(--orange);
}

/* Styles the main background section */
.breadcrumb-header-section {
    background-image: url("images/system_img/background.png");
    /* Light gray background color from the image */
    /* Bootstrap's py-5 handles padding top/bottom */
}

/* Styles the main title "Product Details" */
.breadcrumb-header-section h1 {
    color: #333;
    font-size: 36px; /* Adjust size to match image scale */
}

/* Styles the breadcrumb links */
.breadcrumb-item a {
    color: #777; /* Medium gray color for links */
    text-decoration: none; /* Removes underline from links */
}

.breadcrumb-item a:hover {
    color: var(--orange); /* Optional: A subtle hover color */
}

/* Styles the active item "Product Details" */
.breadcrumb-item.active {
    color: var(--orange); /* Keeps the active item the same color as the links */
    font-weight: normal; /* Ensures it's not bolded by default BS styles */
}

.logo{display:flex;align-items:center;gap:12px;color:var(--orange)}
.logo img{height:40px;width:40px;object-fit:cover;border-radius:50%}
.logo h1{font-family:Playfair Display,serif;color:var(--orange);margin:0;font-size:22px}
.logo small{display:block;font-size:11px;color:#000000}

/*header icons*/
.right-nav .icons a{
    color: #000;
    margin-left: 15px;
}

.right-nav .icons a:hover{
    color: var(--orange);
}

/* HAMBURGER MENU STYLES */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    display: none;
    position: fixed;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 12px 0;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    border-bottom: 1px solid #eee;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    color: var(--orange);
}

/* MAIN LAYOUT */
.checkout-container {
  background: var(--background-image);
  display: flex;
  gap: 30px;
  width: 90%;
  margin: auto;
  align-items: flex-start;
}

/* LEFT FORM */
.billing-form {
  flex: 2;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
}

.billing-form h3 {
  margin-bottom: 20px;
}

.form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 500;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px;
  border-radius: 30px;
  border: 1px solid #ff5722;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(255, 87, 34, 0.5);
}

/* DELIVERY OPTIONS */
.delivery-options {
  margin-top: 10px;
}

.delivery-options label {
  display: block;
  margin-bottom: 8px;
}

/* RIGHT SUMMARY */
.order-summary {
  flex: 1;
  background: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  max-height: 400px;
  border: 1px solid #777;
}

.order-summary h4 {
  margin-bottom: 20px;
}

/* SUMMARY ITEMS */
.summary-item,
.summary-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.summary-total {
  font-weight: bold;
  margin-top: 15px;
}

/* DISCOUNT COLOR */
.discount {
  color: red;
}

/* BUTTON */
.checkout-btn {
  width: 100%;
  padding: 12px;
  background: #ff5722;
  color: #fff;
  border: none;
  margin-top: 20px;
  cursor: pointer;
  border-radius: 30px;
}

/* FEATURES */
/* FEATURES */
.features {
    display: flex;
    justify-content: space-between;
    margin: 80px auto;
    gap: 20px;
}

.feature {
    text-align: center;
    max-width: 250px;
    flex: 1;
}

.feature .icon{
    font-size: 50px;
    background-color: #ff5722;
    border-radius: 70%;
    display: inline-block;
    padding: 15px;
}

/* NEWSLETTER */
.newsletter {
    background: #f9f9f9;
    padding: 80px 20px;
    text-align: center;
}

.newsletter h2 {
    font-size: 32px;
    margin: 15px 0;
}

.newsletter h4 {
    font-size: 14px;
    color: #ff5722;
    margin-bottom: 10px;
}

.newsletter p {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.newsletter span {
    color: #ff5722;
}

.newsletter-box {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.newsletter-box input {
    padding: 14px 20px;
    width: 300px;
    border-radius: 30px 0 0 30px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.newsletter-box button {
    padding: 14px 30px;
    background: #ff5722;
    color: #f9f9f9;
    border: none;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.newsletter-box button:hover {
    background: #e64a19;
}

.newsletter-box button:focus{
    outline: none;
}


/*footer styling*/
footer {
  background: #000;
  color: #fff;
  font-size: 14px;
}

.footer-main .container{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top .container{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.footer-bottom .container{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  background: #fff;
  color: #000;
  padding: 15px 0;
  border-top: 1px solid #ddd;
}
.footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-top .contact strong a {
  color: var(--orange);
  text-decoration: none;
}

.footer-top .socials a {
  margin-left: 10px;
  font-size: 18px;
  color: #000;
}

.footer-main {
    padding: 40px 0;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 15px;
  border-bottom: 2px solid #ff5722;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
}

.footer-col ul li a:hover {
  color: #ff5722;
}

.payments img {
  max-width: 50px;
  margin-right: 10px;
}

.footer-bottom {
  background: #111;
  padding: 10px 0;
  font-size: 13px;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}